84dfa701cc6fd471d21cb37c7055a5ddc3873db6,src/main/java/com/whoknows/security/SecurityConfiguration.java,SecurityConfiguration,configure,#HttpSecurity#,46
Before Change
.antMatchers("/bower_components/**").permitAll()
.anyRequest().authenticated()
.and()
.formLogin()
.and()
.logout()
.permitAll()
.and()
.addFilterBefore(authFilter(),UsernamePasswordAuthenticationFilter.class).csrf().disable();
}
After Change
.antMatchers("/picture/**").permitAll()
.anyRequest().authenticated()
.and()
.formLogin()
.and()
.logout()
.permitAll()
.and()
.addFilterBefore(authFilter(),UsernamePasswordAuthenticationFilter.class).csrf().disable();